summaryrefslogtreecommitdiff
path: root/src/app/article/all/[pageId]/page.tsx
diff options
context:
space:
mode:
authorFushihara <1039534+fushihara@users.noreply.github.com>2024-09-23 21:26:42 +0900
committerFushihara <1039534+fushihara@users.noreply.github.com>2024-09-23 21:26:42 +0900
commitc1cc8ef47e4a405697cd9855667e3df5593bd557 (patch)
treedc0fb7319d8386614ca883405fdfe83a93eb5d72 /src/app/article/all/[pageId]/page.tsx
parentba0c8d73e585d7ff249dd90684254bc7fa025544 (diff)
タグ一覧のデータの仕組み変更
Diffstat (limited to 'src/app/article/all/[pageId]/page.tsx')
-rw-r--r--src/app/article/all/[pageId]/page.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/app/article/all/[pageId]/page.tsx b/src/app/article/all/[pageId]/page.tsx
index fd72772..0374401 100644
--- a/src/app/article/all/[pageId]/page.tsx
+++ b/src/app/article/all/[pageId]/page.tsx
@@ -149,9 +149,6 @@ export async function generateStaticParams() {
return { pageId: `page-${index + 1}`, data: data };
});
}
-// export const generateStaticParams = async () => {
-// return [{ articleid: "123" }];
-// };
function chunk<T = any>(list: T[], len: number) {
if (len <= 0) {